CreateFootnoteResponse.fromJson constructor

CreateFootnoteResponse.fromJson(
  1. Map json_
)

Implementation

CreateFootnoteResponse.fromJson(core.Map json_)
    : this(
        footnoteId: json_.containsKey('footnoteId')
            ? json_['footnoteId'] as core.String
            : null,
      );