CreateFooterResponse.fromJson constructor

CreateFooterResponse.fromJson(
  1. Map json_
)

Implementation

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